home *** CD-ROM | disk | FTP | other *** search
/ Aminet 2 / Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso / Aminet / util / gnu / textutils_1_3.LHA / textutils-1.3 / cat / uniq.1 < prev    next >
Text File  |  1992-09-22  |  3KB  |  133 lines

  1.  
  2.  
  3.  
  4. UNIQ(1L)          MISC. REFERENCE MANUAL PAGES           UNIQ(1L)
  5.  
  6.  
  7.  
  8. NAME
  9.      uniq - remove duplicate lines from a sorted file
  10.  
  11. SYNOPSIS
  12.      uniq [-cdu] [-f  skip-fields]  [-s  skip-chars]  [-w  check-
  13.      chars] [-#skip-fields] [+#skip-chars] [--count] [--repeated]
  14.      [--unique]  [--skip-fields=skip-fields]  [--skip-chars=skip-
  15.      chars] [--check-chars=check-chars] [infile] [outfile]
  16.  
  17. DESCRIPTION
  18.      This manual page documents the GNU version  of  uniq.   uniq
  19.      prints the unique lines in a sorted file, discarding all but
  20.      one of a run of matching lines.  It can optionally show only
  21.      lines  that  appear  exactly once, or lines that appear more
  22.      than once.  uniq requires sorted input because  it  compares
  23.      only consecutive lines.
  24.  
  25.      If the output file is not  specified,  uniq  writes  to  the
  26.      standard  output.   If  the  input file is not specified, it
  27.      reads from the standard input.
  28.  
  29.   OPTIONS
  30.      -_u, --_u_n_i_q_u_e
  31.           Only print unique lines.
  32.  
  33.      -_d, --_r_e_p_e_a_t_e_d
  34.           Only print duplicate lines.
  35.  
  36.      -_c, --_c_o_u_n_t
  37.           Print the number of times each line occurred along with
  38.           the line.
  39.  
  40.      -, -_f, --_s_k_i_p-_f_i_e_l_d_s=_n_u_m_b_e_r
  41.           In this option, _n_u_m_b_e_r is an integer  representing  the
  42.           number  of  fields  to  skip  over  before checking for
  43.           uniqueness.  The first _n_u_m_b_e_r fields,  along  with  any
  44.           blanks  found  before  _n_u_m_b_e_r  fields  is  reached, are
  45.           skipped over and not counted.  Fields are defined as  a
  46.           strings  of  non-space,  non-tab  characters,  that are
  47.           separated from each other by spaces and tabs.
  48.  
  49.      --, -_s, +_s_k_i_p-_c_h_a_r_s=_n_u_m_b_e_r
  50.           In this option, _n_u_m_b_e_r  is  an  integer  represent  the
  51.           number  of  characters to skip over before checking for
  52.           uniqueness.  The first _n_u_m_b_e_r  characters,  along  with
  53.           any  blanks  found before _n_u_m_b_e_r characters is reached,
  54.           are skipped over and not counted.  If you use both  the
  55.           field   and  character  skipping  options,  fields  are
  56.           skipped over first.
  57.  
  58.      -_w, +_c_h_e_c_k-_c_h_a_r_s=_n_u_m_b_e_r
  59.           Specify the number of  characters  to  compare  in  the
  60.  
  61.  
  62.  
  63. Sun Release 4.1           Last change:                          1
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70. UNIQ(1L)          MISC. REFERENCE MANUAL PAGES           UNIQ(1L)
  71.  
  72.  
  73.  
  74.           lines,  after skipping any specified fields and charac-
  75.           ters.  Normally the entire rest of the lines  are  com-
  76.           pared.
  77.  
  78.      The long-named options can be introduced with `+' as well as
  79.      `--',  for compatibility with previous releases.  Eventually
  80.      support for `+' will be removed, because it is  incompatible
  81.      with the POSIX.2 standard.
  82.  
  83.  
  84.  
  85.  
  86.  
  87.  
  88.  
  89.  
  90.  
  91.  
  92.  
  93.  
  94.  
  95.  
  96.  
  97.  
  98.  
  99.  
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129. Sun Release 4.1           Last change:                          2
  130.  
  131.  
  132.  
  133.